home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010921-20020314 / 000406_fdc@columbia.edu_Wed Mar 6 16:07:32 EST 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  50 lines

  1. Article: 13255 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: silencing error messages
  6. Date: 6 Mar 2002 16:06:55 -0500
  7. Organization: Columbia University
  8. Lines: 33
  9. Message-ID: <a660df$b0d$1@watsol.cc.columbia.edu>
  10. References: <c3782a8b.0203061258.725e38a2@posting.google.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1015448816 16713 128.59.39.139 (6 Mar 2002 21:06:56 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 6 Mar 2002 21:06:56 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13255
  16.  
  17. In article <c3782a8b.0203061258.725e38a2@posting.google.com>,
  18. Jay Mccanta <mccantaj@immunex.com> wrote:
  19. : I am trying to build a ckermit 8.0 script that will only output what I
  20. : want it to.  I have:
  21. : set input echo off
  22. : set take echo off
  23. : set macro echo off
  24. :
  25. The first three are the default anyway.
  26.  
  27. : set quiet on
  28. : Still when I do a
  29. : set host kdalj
  30. : I get DNS Lookup messages, etc.  I can reduce the messages by
  31. : redirecting stderr to /dev/null.  However, not all the messages are
  32. : eliminated.  Is there a way to suppress all those messages while
  33. : allowing me to ECHO lines out?
  34. :
  35. Probably not.  Every message that comes out of Kermit has to be guarded
  36. by all kinds of "if (this) but not (that) but if... unless... but..."
  37. clauses and since there are thousands of them, no doubt some of them
  38. are not guarded.
  39.  
  40. Since C-Kermit 8.0 was just released, you missed your chance to get
  41. your unfavorate messages suppressed during the long beta.  But you can
  42. still send in reports of specific messages you want suppressed and we'll
  43. put them on the list for next time.
  44.  
  45. - Frank
  46.